home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2008 March
/
PCWorld_2008-03_cd.bin
/
komercni software
/
miton
/
spysweeper50setup.exe
/
{app}
/
SpyHelp.chm
/
scripts
/
seealso.js
< prev
Wrap
Text File
|
2006-06-01
|
896b
|
35 lines
// Copyright (c) 2002-2003 Quadralay Corporation. All rights reserved.
//
function WWSeeAlso_Object()
{
this.mSetTimeoutID = null;
this.fOnClickButton = WWSeeAlso_OnClickButton;
this.fOnClickLink = WWSeeAlso_OnClickLink;
this.fShowSeeAlso = WWSeeAlso_ShowSeeAlso;
}
function WWSeeAlso_OnClickButton(ParamSeeAlsoObjectID)
{
if (this.mSetTimeoutID == null)
{
this.mSetTimeoutID = setTimeout("window.VarSeeAlso.fShowSeeAlso(" + ParamSeeAlsoObjectID + ");", 10);
}
}
function WWSeeAlso_OnClickLink(ParamSeeAlsoObjectID)
{
if (this.mSetTimeoutID == null)
{
this.mSetTimeoutID = setTimeout("window.VarSeeAlso.fShowSeeAlso(" + ParamSeeAlsoObjectID + ");", 10);
}
}
function WWSeeAlso_ShowSeeAlso(ParamSeeAlsoObjectID)
{
setTimeout("document.SeeAlso_" + ParamSeeAlsoObjectID + ".Click();", 1);
this.mSetTimeoutID = null;
}